home *** CD-ROM | disk | FTP | other *** search
- unit Unit2;
- interface
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls, Buttons, ExtCtrls;
-
- type
- TFormPostReply = class(TForm)
- Panel1: TPanel;
- MemoArticle: TMemo;
- EditFrom: TEdit;
- EditDate: TEdit;
- EditSubject: TEdit;
- Label1: TLabel;
- Panel2: TPanel;
- BitBtn1: TBitBtn;
- BitBtn2: TBitBtn;
- procedure FormCreate(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- FormPostReply: TFormPostReply;
-
- implementation
- {$R *.DFM}
-
- procedure TFormPostReply.FormCreate(Sender: TObject);
- begin
- EditDate.Text := FormatDateTime('dd mmm yyyy hh:mm:ss',Now);
- end;
-
- end.
-